2017-07-22 03:23:02 +01:00
|
|
|
{ buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, mock
|
|
|
|
, zope_testing
|
|
|
|
, stdenv
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "zc.lockfile";
|
2019-10-24 07:47:52 +01:00
|
|
|
version = "2.0";
|
2017-07-22 03:23:02 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-10-24 07:47:52 +01:00
|
|
|
sha256 = "307ad78227e48be260e64896ec8886edc7eae22d8ec53e4d528ab5537a83203b";
|
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 ];
|
|
|
|
};
|
|
|
|
}
|