mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
18 lines
417 B
Nix
18 lines
417 B
Nix
{ lib, buildPythonPackage, fetchPypi}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "sentinel";
|
|
version = "0.1.2";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "c7aeee3f57c56a8e52771fc64230345deecd62c48debbbe1f1aca453439741d0";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Create sentinel and singleton objects";
|
|
homepage = "https://github.com/eddieantonio/sentinel";
|
|
license = licenses.mit;
|
|
};
|
|
}
|