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";
2021-03-24 09:28:12 +00:00
version = "0.6";
2017-12-28 16:41:39 +00:00
src = fetchPypi {
inherit pname version;
2021-03-24 09:28:12 +00:00
sha256 = "9f5d6ec9fe130b7490bb04572134392420b72bd0842185e02d461a797d6bc749";
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 ];
};
}