pythonPackages.zc_lockfile: 1.0.2 -> 1.2.1

This commit is contained in:
adisbladis
2017-07-22 10:23:02 +08:00
committed by Frederik Rietdijk
parent 1d6aa6581a
commit 2e34c6d8a9
2 changed files with 28 additions and 17 deletions

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