1{ lib, buildPythonPackage, fetchPypi}:
2
3buildPythonPackage rec {
4 pname = "sentinel";
5 version = "0.1.2";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "c7aeee3f57c56a8e52771fc64230345deecd62c48debbbe1f1aca453439741d0";
10 };
11
12 meta = with lib; {
13 description = "Create sentinel and singleton objects";
14 homepage = "https://github.com/eddieantonio/sentinel";
15 license = licenses.mit;
16 };
17}