pythonPackages.zc_lockfile: 1.0.2 -> 1.2.1
This commit is contained in:
parent
1d6aa6581a
commit
2e34c6d8a9
27
pkgs/development/python-modules/zc_lockfile/default.nix
Normal file
27
pkgs/development/python-modules/zc_lockfile/default.nix
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
{ buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, mock
|
||||||
|
, zope_testing
|
||||||
|
, stdenv
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "zc.lockfile";
|
||||||
|
version = "1.2.1";
|
||||||
|
name = "${pname}-${version}";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "11db91ada7f22fe8aae268d4bfdeae012c4fe655f66bbb315b00822ec00d043e";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ mock ];
|
||||||
|
propagatedBuildInputs = [ zope_testing ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Inter-process locks";
|
||||||
|
homepage = http://www.python.org/pypi/zc.lockfile;
|
||||||
|
license = licenses.zpt20;
|
||||||
|
maintainers = with maintainers; [ goibhniu ];
|
||||||
|
};
|
||||||
|
}
|
@ -24943,23 +24943,7 @@ EOF
|
|||||||
zconfig = callPackage ../development/python-modules/zconfig { };
|
zconfig = callPackage ../development/python-modules/zconfig { };
|
||||||
|
|
||||||
|
|
||||||
zc_lockfile = buildPythonPackage rec {
|
zc_lockfile = callPackage ../development/python-modules/zc_lockfile { };
|
||||||
name = "zc.lockfile-${version}";
|
|
||||||
version = "1.0.2";
|
|
||||||
|
|
||||||
src = pkgs.fetchurl {
|
|
||||||
url = "mirror://pypi/z/zc.lockfile/${name}.tar.gz";
|
|
||||||
sha256 = "96bb2aa0438f3e29a31e4702316f832ec1482837daef729a92e28c202d8fba5c";
|
|
||||||
};
|
|
||||||
|
|
||||||
meta = {
|
|
||||||
description = "Inter-process locks";
|
|
||||||
homepage = http://www.python.org/pypi/zc.lockfile;
|
|
||||||
license = licenses.zpt20;
|
|
||||||
maintainers = with maintainers; [ goibhniu ];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
zdaemon = buildPythonPackage rec {
|
zdaemon = buildPythonPackage rec {
|
||||||
name = "zdaemon-${version}";
|
name = "zdaemon-${version}";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user