Merge pull request #119990 from DeterminateSystems/lzfse

python3.pkgs.liblzfse: init at 0.4.1
This commit is contained in:
Sandro 2021-04-22 12:28:37 +02:00 committed by GitHub
commit 665a613811
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 38 additions and 0 deletions

View file

@ -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;
};
}

View file

@ -3897,6 +3897,10 @@ in {
liblarch = callPackage ../development/python-modules/liblarch { };
liblzfse = callPackage ../development/python-modules/liblzfse {
inherit (pkgs) lzfse;
};
libmodulemd = pipe pkgs.libmodulemd [
toPythonModule
(p: