1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5}:
6
7buildPythonPackage rec {
8 pname = "sentinel";
9 version = "1.0.0";
10 format = "setuptools";
11
12 src = fetchPypi {
13 inherit pname version;
14 hash = "sha256-GQko+ZUa9ulKH4Tu/K7XkcKAl90VK4jpiJBr4wBFH9I=";
15 };
16
17 meta = with lib; {
18 description = "Create sentinel and singleton objects";
19 homepage = "https://github.com/eddieantonio/sentinel";
20 license = licenses.mit;
21 };
22}