python.pkgs.portalocker: init at 1.4.0

This commit is contained in:
Jonathan Ringer 2019-05-28 11:14:54 -07:00
parent a4b7c61f97
commit 866026db1e
2 changed files with 39 additions and 0 deletions

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

View file

@ -1611,6 +1611,8 @@ in {
parsy = callPackage ../development/python-modules/parsy { };
portalocker = callPackage ../development/python-modules/portalocker { };
portpicker = callPackage ../development/python-modules/portpicker { };
pkginfo = callPackage ../development/python-modules/pkginfo { };