Skip to content

Commit

Permalink
python39Packages.pylibdmtx: init at 0.1.10
Browse files Browse the repository at this point in the history
  • Loading branch information
grahamc authored and Artturin committed Apr 24, 2022
1 parent e94105f commit 1c06348
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 0 deletions.
47 changes: 47 additions & 0 deletions pkgs/development/python-modules/pylibdmtx/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
{ fetchFromGitHub
, buildPythonPackage
, pillow
, numpy
, libdmtx
, lib
}:

buildPythonPackage rec {
pname = "pylibdmtx";
version = "0.1.10";

src = fetchFromGitHub {
owner = "NaturalHistoryMuseum";
repo = pname;
rev = "v${version}";
hash = "sha256-vNWzhO4V0mj4eItZ0Z5UG9RBCqprIcgMGNyIe1+mXWY=";
};

# Change:
# def load():
# """Loads the libdmtx shared library.
#
# To:
# def load():
# return cdll.LoadLibrary("/nix/store/.../lib/libdmtx.so")
# """Loads the libdmtx shared library.
postPatch = ''
sed -i '\#def load.*#a\ return cdll.LoadLibrary("${libdmtx}/lib/libdmtx.so")' \
pylibdmtx/dmtx_library.py
# Checks that the loader works in various scenarios, but we just
# forced it to only work one way.
rm pylibdmtx/tests/test_dmtx_library.py
'';

propagatedBuildInputs = [ pillow numpy ];

pythonImportsCheck = [ "pylibdmtx" ];

meta = with lib; {
description = "Read and write Data Matrix barcodes from Python 2 and 3 using the libdmtx library";
homepage = "https://github.com/NaturalHistoryMuseum/pylibdmtx/";
license = licenses.mit;
maintainers = with maintainers; [ grahamc ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7257,6 +7257,8 @@ in {

pylibconfig2 = callPackage ../development/python-modules/pylibconfig2 { };

pylibdmtx = callPackage ../development/python-modules/pylibdmtx { };

pylibftdi = callPackage ../development/python-modules/pylibftdi {
inherit (pkgs) libusb1;
};
Expand Down

0 comments on commit 1c06348

Please sign in to comment.