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

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

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