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

19 lines
464 B
Nix
Raw Normal View History

{ lib, buildPythonPackage, fetchPypi }:
2017-12-28 16:41:39 +00:00
buildPythonPackage rec {
pname = "fastrlock";
2020-06-06 07:47:07 +01:00
version = "0.5";
2017-12-28 16:41:39 +00:00
src = fetchPypi {
inherit pname version;
2020-06-06 07:47:07 +01:00
sha256 = "9ae1a31f6e069b5f0f28ba63c594d0c952065de0a375f7b491d21ebaccc5166f";
2017-12-28 16:41:39 +00:00
};
meta = with lib; {
homepage = "https://github.com/scoder/fastrlock";
2017-12-28 16:41:39 +00:00
description = "A fast RLock implementation for CPython";
license = licenses.mit;
maintainers = with maintainers; [ hyphon81 ];
};
}