mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-29 14:57:28 +03:00
pythonPackages.sentinel: init at 0.1.1
This commit is contained in:
parent
57b1f53862
commit
521b819eda
17
pkgs/development/python-modules/sentinel/default.nix
Normal file
17
pkgs/development/python-modules/sentinel/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user