summary refs log tree commit diff
path: root/pkgs/development/python-modules/fastrlock/default.nix
blob: 065150e88e2f5d034815336025fe2d7b5f3169e7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ lib, buildPythonPackage, fetchPypi }:

buildPythonPackage rec {
  pname = "fastrlock";
  version = "0.8";

  src = fetchPypi {
    inherit pname version;
    sha256 = "9cc100ed0924b32173d7de705a82fdf1257cdf60af1952a13f64759307b40931";
  };

  meta = with lib; {
    homepage = "https://github.com/scoder/fastrlock";
    description = "A fast RLock implementation for CPython";
    license = licenses.mit;
    maintainers = with maintainers; [ hyphon81 ];
  };
}