python312Packages.dash-renderer: remove (#369714)
[NixPkgs.git] / pkgs / development / python-modules / sentinel / default.nix
blobe89a52fa0fbbc734d2983f0f15c4b7c0728c46f7
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5 }:
7 buildPythonPackage rec {
8   pname = "sentinel";
9   version = "1.0.0";
10   format = "setuptools";
12   src = fetchPypi {
13     inherit pname version;
14     hash = "sha256-GQko+ZUa9ulKH4Tu/K7XkcKAl90VK4jpiJBr4wBFH9I=";
15   };
17   meta = with lib; {
18     description = "Create sentinel and singleton objects";
19     homepage = "https://github.com/eddieantonio/sentinel";
20     license = licenses.mit;
21   };