Skip to content

Commit

Permalink
python3.pkgs.liblzfse: init at 0.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
cole-h committed Apr 21, 2021
1 parent 20313e8 commit e2efd87
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 0 deletions.
34 changes: 34 additions & 0 deletions pkgs/development/python-modules/liblzfse/default.nix
@@ -0,0 +1,34 @@
{ lib
, buildPythonPackage
, fetchPypi
, lzfse
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "pyliblzfse";
version = "0.4.1";

src = fetchPypi {
inherit pname version;
sha256 = "bb0b899b3830c02fdf3dbde48ea59611833f366fef836e5c32cf8145134b7d3d";
};

preBuild = ''
rm -r lzfse
ln -s ${lzfse.src} lzfse
'';

# no tests
doCheck = false;

pythonImportsCheck = [
"liblzfse"
];

meta = with lib; {
description = "Python bindings for LZFSE";
homepage = "https://github.com/ydkhatri/pyliblzfse";
license = licenses.mit;
maintainers = teams.determinatesystems.members;
};
}
4 changes: 4 additions & 0 deletions pkgs/top-level/python-packages.nix
Expand Up @@ -3889,6 +3889,10 @@ in {

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

liblzfse = callPackage ../development/python-modules/liblzfse {
inherit (pkgs) lzfse;
};

libmodulemd = pipe pkgs.libmodulemd [
toPythonModule
(p:
Expand Down

0 comments on commit e2efd87

Please sign in to comment.