mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-09 14:33:22 +00:00
d562454bfd
Fix compatibility with packaging 23.0. Diff: https://github.com/landscapeio/requirements-detector/compare/1.0.3...1.1.0
53 lines
946 B
Nix
53 lines
946 B
Nix
{ lib
|
|
, astroid
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, packaging
|
|
, poetry-core
|
|
, poetry-semver
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, toml
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "requirements-detector";
|
|
version = "1.1.0";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "landscapeio";
|
|
repo = pname;
|
|
rev = version;
|
|
hash = "sha256-H+h/PN1TrlpDRgI7tMWUhXlxj4CChwcxIR/BvyO261c=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
poetry-core
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
astroid
|
|
packaging
|
|
poetry-semver
|
|
toml
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"requirements_detector"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Python tool to find and list requirements of a Python project";
|
|
homepage = "https://github.com/landscapeio/requirements-detector";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ kamadorueda ];
|
|
};
|
|
}
|