mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 23:36:17 +01:00
pythonPackages.injector: init at 0.18.4
This commit is contained in:
parent
4a2cbcfbb4
commit
f1ff32e49a
2 changed files with 25 additions and 0 deletions
23
pkgs/development/python-modules/injector/default.nix
Normal file
23
pkgs/development/python-modules/injector/default.nix
Normal file
|
@ -0,0 +1,23 @@
|
|||
{ lib, buildPythonPackage, fetchPypi, typing-extensions }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "injector";
|
||||
version = "0.18.4";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "10miwi58g4b8rvdf1pl7s7x9j91qyxxv3kdn5idzkfc387hqxn6f";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ typing-extensions ];
|
||||
|
||||
doCheck = false; # No tests are available
|
||||
pythonImportsCheck = [ "injector" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python dependency injection framework, inspired by Guice";
|
||||
homepage = "https://github.com/alecthomas/injector";
|
||||
maintainers = [ maintainers.ivar ];
|
||||
license = licenses.bsd3;
|
||||
};
|
||||
}
|
|
@ -3400,6 +3400,8 @@ in {
|
|||
|
||||
iniparse = callPackage ../development/python-modules/iniparse { };
|
||||
|
||||
injector = callPackage ../development/python-modules/injector { };
|
||||
|
||||
inotify-simple = callPackage ../development/python-modules/inotify-simple { };
|
||||
|
||||
inquirer = callPackage ../development/python-modules/inquirer { };
|
||||
|
|
Loading…
Reference in a new issue