1{ stdenv, buildPythonPackage, fetchPypi }:
2
3buildPythonPackage rec {
4 pname = "fastrlock";
5 version = "0.5";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "9ae1a31f6e069b5f0f28ba63c594d0c952065de0a375f7b491d21ebaccc5166f";
10 };
11
12 meta = with stdenv.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 };
18}