locket: init at 0.2.0

This commit is contained in:
Tom Hunger 2016-05-12 17:02:14 +01:00
parent d2c6b93892
commit dacbeea15b
2 changed files with 24 additions and 0 deletions

View file

@ -353,6 +353,7 @@
tailhook = "Paul Colomiets <paul@colomiets.name>";
taktoa = "Remy Goldschmidt <taktoa@gmail.com>";
tavyc = "Octavian Cerna <octavian.cerna@gmail.com>";
teh = "Tom Hunger <tehunger@gmail.com>";
telotortium = "Robert Irelan <rirelan@gmail.com>";
thall = "Niclas Thall <niclas.thall@gmail.com>";
thammers = "Tobias Hammerschmidt <jawr@gmx.de>";

View file

@ -4609,6 +4609,29 @@ in modules // {
};
};
locket = buildPythonPackage rec {
name = "locket-${version}";
version = "0.2.0";
src = pkgs.fetchurl {
url = "mirror://pypi/l/locket/${name}.tar.gz";
sha256 = "1d4z2zngrpqkrfhnd4yhysh66kjn4mblys2l06sh5dix2p0n7vhz";
};
buildInputs = with self; [ pytest ];
propagatedBuildInputs = with self; [ ];
# weird test requirements (spur.local>=0.3.7,<0.4)
doCheck = false;
meta = {
description = "Locket implements a lock that can be used by multiple processes provided they use the same path.";
homepage = "https://github.com/mwilliamson/locket.py";
license = licenses.bsd2;
maintainers = with maintainers; [ teh ];
};
};
datashape = buildPythonPackage rec {
name = "datashape-${version}";
version = "0.5.1";