My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/sentinel/default.nix

17 lines
417 B

{ lib, buildPythonPackage, fetchPypi}:
buildPythonPackage rec {
pname = "sentinel";
version = "0.3.0";
src = fetchPypi {
inherit pname version;
sha256 = "f28143aa4716dbc8f6193f5682176a3c33cd26aaae05d9ecf66c186a9887cc2d";
};
meta = with lib; {
description = "Create sentinel and singleton objects";
homepage = "https://github.com/eddieantonio/sentinel";
license = licenses.mit;
};
}