1{ lib, buildPythonPackage, fetchPypi}: 2 3buildPythonPackage rec { 4 pname = "sentinel"; 5 version = "1.0.0"; 6 7 src = fetchPypi { 8 inherit pname version; 9 hash = "sha256-GQko+ZUa9ulKH4Tu/K7XkcKAl90VK4jpiJBr4wBFH9I="; 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}