depot/third_party/nixpkgs/pkgs/development/python-modules/dparse2/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

48 lines
935 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
pythonOlder,
toml,
pyyaml,
packvers,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "dparse2";
version = "0.7.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "nexB";
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-JUTL+SVf1RRIXQqwFR7MnExsgGseSiO0a5YzzcqdXHw=";
};
propagatedBuildInputs = [
toml
pyyaml
packvers
];
nativeCheckInputs = [ pytestCheckHook ];
disabledTestPaths = [
# Requries pipenv
"tests/test_parse.py"
];
pythonImportsCheck = [ "dparse2" ];
meta = with lib; {
description = "Module to parse Python dependency files";
homepage = "https://github.com/nexB/dparse2";
changelog = "https://github.com/nexB/dparse2/blob/${version}/CHANGELOG.rst";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}