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

buildPythonPackage rec {
  pname = "sentinel";
  version = "0.3.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "f28143aa4716dbc8f6193f5682176a3c33cd26aaae05d9ecf66c186a9887cc2d";
  };

  meta = with lib; {
    description = "Create sentinel and singleton objects";
    homepage = "https://github.com/eddieantonio/sentinel";
    license = licenses.mit;
  };
}