2017-07-22 03:23:02 +01:00
|
|
|
{ buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, mock
|
|
|
|
, zope_testing
|
|
|
|
, stdenv
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "zc.lockfile";
|
2018-12-24 18:34:18 +00:00
|
|
|
version = "1.4";
|
2017-07-22 03:23:02 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-12-24 18:34:18 +00:00
|
|
|
sha256 = "0lrj2zdr06sff7i151710jbbnnhx4phdc0qpns8jkarpd62f7a4m";
|
2017-07-22 03:23:02 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ mock ];
|
|
|
|
propagatedBuildInputs = [ zope_testing ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Inter-process locks";
|
2018-06-27 21:12:57 +01:00
|
|
|
homepage = https://www.python.org/pypi/zc.lockfile;
|
2017-08-06 12:49:18 +01:00
|
|
|
license = licenses.zpl20;
|
2017-07-22 03:23:02 +01:00
|
|
|
maintainers = with maintainers; [ goibhniu ];
|
|
|
|
};
|
|
|
|
}
|