python3Packages.simple-di: add format

This commit is contained in:
Fabian Affolter 2022-02-23 16:21:16 +01:00 committed by GitHub
parent 94bebb637c
commit 9c7955d6ed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,13 +8,16 @@
}:
buildPythonPackage rec {
pname = "simple_di";
pname = "simple-di";
version = "0.1.5";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-GSuZne5M1PsRpdhhFlyq0C2PBhfA+Ab8Wwn5BfGgPKA=";
pname = "simple_di";
inherit version;
hash = "sha256-GSuZne5M1PsRpdhhFlyq0C2PBhfA+Ab8Wwn5BfGgPKA=";
};
propagatedBuildInputs = [
@ -31,10 +34,10 @@ buildPythonPackage rec {
# pypi distribution contains no tests
doCheck = false;
meta = {
meta = with lib; {
description = "Simple dependency injection library";
homepage = "https://github.com/bentoml/simple_di";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ sauyon ];
license = licenses.asl20;
maintainers = with maintainers; [ sauyon ];
};
}