pythonPackages.reflink: init at 0.2.1
This commit is contained in:
parent
2080afd039
commit
a1668d0d7b
33
pkgs/development/python-modules/reflink/default.nix
Normal file
33
pkgs/development/python-modules/reflink/default.nix
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
{ buildPythonPackage
|
||||||
|
, cffi
|
||||||
|
, fetchPypi
|
||||||
|
, lib
|
||||||
|
, pytestCheckHook
|
||||||
|
, pytestrunner
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "reflink";
|
||||||
|
version = "0.2.1";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "sha256-ySU1gtskQTv9cDq/wbKkneePMbSQcjnyhumhkpoebjo=";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ cffi pytestrunner ];
|
||||||
|
|
||||||
|
checkInputs = [ pytestCheckHook ];
|
||||||
|
|
||||||
|
# FIXME: These do not work, and I have been unable to figure out why.
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
pythonImportsCheck = [ "reflink" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Python reflink wraps around platform specific reflink implementations";
|
||||||
|
homepage = "https://gitlab.com/rubdos/pyreflink";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ lovesegfault ];
|
||||||
|
};
|
||||||
|
}
|
@ -6365,6 +6365,8 @@ in {
|
|||||||
|
|
||||||
reedsolo = callPackage ../development/python-modules/reedsolo { };
|
reedsolo = callPackage ../development/python-modules/reedsolo { };
|
||||||
|
|
||||||
|
reflink = callPackage ../development/python-modules/reflink { };
|
||||||
|
|
||||||
regex = callPackage ../development/python-modules/regex { };
|
regex = callPackage ../development/python-modules/regex { };
|
||||||
|
|
||||||
regional = callPackage ../development/python-modules/regional { };
|
regional = callPackage ../development/python-modules/regional { };
|
||||||
|
Loading…
Reference in New Issue
Block a user