nixpkgs/pkgs/development/python-modules/sentinel/default.nix

18 lines
417 B
Nix
Raw Normal View History

2019-06-24 13:12:37 +01:00
{ lib, buildPythonPackage, fetchPypi}:
buildPythonPackage rec {
pname = "sentinel";
version = "0.3.0";
2019-06-24 13:12:37 +01:00
src = fetchPypi {
inherit pname version;
sha256 = "f28143aa4716dbc8f6193f5682176a3c33cd26aaae05d9ecf66c186a9887cc2d";
2019-06-24 13:12:37 +01:00
};
meta = with lib; {
description = "Create sentinel and singleton objects";
homepage = "https://github.com/eddieantonio/sentinel";
license = licenses.mit;
};
}