1{ lib, buildPythonPackage, fetchPypi}:
2
3buildPythonPackage rec {
4 pname = "sentinel";
5 version = "0.1.1";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "c00ba2a4f240ea4c5414059a696d6e128730272cb2c631b2eff42e86da1f89b3";
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}