Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09-beta 17 lines 417 B view raw
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}