nixpkgs/pkgs/development/python-modules/fastrlock/default.nix

19 lines
472 B
Nix
Raw Normal View History

2017-12-28 16:41:39 +00:00
{ stdenv, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "fastrlock";
2018-08-25 05:45:32 +00:00
version = "0.4";
2017-12-28 16:41:39 +00:00
src = fetchPypi {
inherit pname version;
2018-08-25 05:45:32 +00:00
sha256 = "6abdbb35205792e2d2a8c441aaa41a613d43ee2d88b3af4fd9735ae7a5f7db6b";
2017-12-28 16:41:39 +00:00
};
meta = with stdenv.lib; {
homepage = https://github.com/scoder/fastrlock;
description = "A fast RLock implementation for CPython";
license = licenses.mit;
maintainers = with maintainers; [ hyphon81 ];
};
}