python.pkgs.portalocker: init at 1.4.0
This commit is contained in:
parent
a4b7c61f97
commit
866026db1e
37
pkgs/development/python-modules/portalocker/default.nix
Normal file
37
pkgs/development/python-modules/portalocker/default.nix
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
{ buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, lib
|
||||||
|
, sphinx
|
||||||
|
, flake8
|
||||||
|
, pytest
|
||||||
|
, pytestcov
|
||||||
|
, pytest-flakes
|
||||||
|
, pytestpep8
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
version = "1.4.0";
|
||||||
|
pname = "portalocker";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "0gwjnalfwl1mb9a04m9h3hrds75xmc9na666aiz2cgz0m545dcrz";
|
||||||
|
};
|
||||||
|
|
||||||
|
checkInputs = [
|
||||||
|
sphinx
|
||||||
|
flake8
|
||||||
|
pytest
|
||||||
|
pytestcov
|
||||||
|
pytest-flakes
|
||||||
|
pytestpep8
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "A library to provide an easy API to file locking";
|
||||||
|
homepage = https://github.com/WoLpH/portalocker;
|
||||||
|
license = licenses.psfl;
|
||||||
|
maintainers = with maintainers; [ jonringer ];
|
||||||
|
platforms = platforms.unix; # Windows has a dependency on pypiwin32
|
||||||
|
};
|
||||||
|
}
|
@ -1611,6 +1611,8 @@ in {
|
|||||||
|
|
||||||
parsy = callPackage ../development/python-modules/parsy { };
|
parsy = callPackage ../development/python-modules/parsy { };
|
||||||
|
|
||||||
|
portalocker = callPackage ../development/python-modules/portalocker { };
|
||||||
|
|
||||||
portpicker = callPackage ../development/python-modules/portpicker { };
|
portpicker = callPackage ../development/python-modules/portpicker { };
|
||||||
|
|
||||||
pkginfo = callPackage ../development/python-modules/pkginfo { };
|
pkginfo = callPackage ../development/python-modules/pkginfo { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user