python3Packages.resolvelib: init at 0.7.0

This commit is contained in:
Martin Weinelt 2021-05-17 23:01:26 +02:00
parent b36764fcbe
commit 23414c5026
No known key found for this signature in database
GPG key ID: 87C1E9888F856759
2 changed files with 32 additions and 0 deletions

View file

@ -0,0 +1,30 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, commentjson
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "resolvelib";
version = "0.7.0";
src = fetchFromGitHub {
owner = "sarugaku";
repo = "resolvelib";
rev = version;
sha256 = "0r7cxwrfvpqz4kd7pdf8fsynzlmi6c754jd5hzd6vssc1zlyvvhx";
};
checkInputs = [
commentjson
pytestCheckHook
];
meta = with lib; {
description = "Resolve abstract dependencies into concrete ones";
homepage = "https://github.com/sarugaku/resolvelib";
license = licenses.isc;
maintainers = with maintainers; [ hexa ];
};
}

View file

@ -7206,6 +7206,8 @@ in {
resampy = callPackage ../development/python-modules/resampy { };
resolvelib = callPackage ../development/python-modules/resolvelib { };
responses = callPackage ../development/python-modules/responses { };
respx = callPackage ../development/python-modules/respx { };