Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / fastrlock / default.nix
blob0821778d024fddc8248c8e4731c9610ae808c824
1 { lib, buildPythonPackage, fetchPypi }:
3 buildPythonPackage rec {
4   pname = "fastrlock";
5   version = "0.5";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "9ae1a31f6e069b5f0f28ba63c594d0c952065de0a375f7b491d21ebaccc5166f";
10   };
12   meta = with lib; {
13     homepage = "https://github.com/scoder/fastrlock";
14     description = "A fast RLock implementation for CPython";
15     license = licenses.mit;
16     maintainers = with maintainers; [ hyphon81 ];
17   };