about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/sentinel/default.nix
blob: 6c69ea26b2a65ad802e1ee9368c14ef023a08a20 (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.1.2";

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

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