pythonPackages.requirements-detector: init at 0.6

This commit is contained in:
Kevin Amado 2019-12-28 03:57:53 -05:00
parent 0634484a53
commit 3af635e043
No known key found for this signature in database
GPG key ID: 04D0CEAF916A9A40
2 changed files with 40 additions and 0 deletions

View file

@ -0,0 +1,38 @@
{ buildPythonPackage
, fetchFromGitHub
, isPy27
, lib
# pythonPackages
, pytest
}:
buildPythonPackage rec {
pname = "requirements-detector";
version = "0.6";
disabled = isPy27;
src = fetchFromGitHub {
owner = "yuvadm";
repo = pname;
rev = version;
sha256 = "15s0n1lhkz0zwi33waqkkjipal3f7s45rxsj1bw89xpr4dj87qx5";
};
checkInputs = [
pytest
];
checkPhase = ''
pytest
'';
meta = {
description = "Python tool to find and list requirements of a Python project";
homepage = "https://github.com/landscapeio/requirements-detector";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [
kamadorueda
];
};
}

View file

@ -5099,6 +5099,8 @@ in {
requests-http-signature = callPackage ../development/python-modules/requests-http-signature { };
requirements-detector = callPackage ../development/python-modules/requirements-detector { };
resampy = callPackage ../development/python-modules/resampy { };
restructuredtext_lint = callPackage ../development/python-modules/restructuredtext_lint { };