python3Packages.simple-di: bring up to standard (#143306)

This commit is contained in:
Sauyon Lee 2021-11-03 22:36:06 +00:00 committed by GitHub
parent e97b3010e5
commit 1fa223efce
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 3 deletions

View File

@ -8,9 +8,9 @@
}:
buildPythonPackage rec {
version = "0.1.2";
pname = "simple_di";
disabled = pythonOlder "3.6.1";
version = "0.1.2";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
@ -24,6 +24,13 @@ buildPythonPackage rec {
dataclasses
];
pythonImportsCheck = [
"simple_di"
];
# pypi distribution contains no tests
doCheck = false;
meta = {
description = "Simple dependency injection library";
homepage = "https://github.com/bentoml/simple_di";

View File

@ -8528,7 +8528,7 @@ in {
simplekml = callPackage ../development/python-modules/simplekml { };
simple_di = callPackage ../development/python-modules/simple_di { };
simple-di = callPackage ../development/python-modules/simple_di { };
simple-rest-client = callPackage ../development/python-modules/simple-rest-client { };