pythonPackages.sentinel: init at 0.1.1

This commit is contained in:
timor 2019-06-24 14:12:37 +02:00
parent 57b1f53862
commit 521b819eda
2 changed files with 19 additions and 0 deletions

View File

@ -0,0 +1,17 @@
{ lib, buildPythonPackage, fetchPypi}:
buildPythonPackage rec {
pname = "sentinel";
version = "0.1.1";
src = fetchPypi {
inherit pname version;
sha256 = "c00ba2a4f240ea4c5414059a696d6e128730272cb2c631b2eff42e86da1f89b3";
};
meta = with lib; {
description = "Create sentinel and singleton objects";
homepage = "https://github.com/eddieantonio/sentinel";
license = licenses.mit;
};
}

View File

@ -931,6 +931,8 @@ in {
selectors2 = callPackage ../development/python-modules/selectors2 { };
sentinel = callPackage ../development/python-modules/sentinel { };
sentry-sdk = callPackage ../development/python-modules/sentry-sdk {};
sepaxml = callPackage ../development/python-modules/sepaxml { };