mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
41 lines
835 B
Nix
41 lines
835 B
Nix
{
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
lib,
|
|
pypiserver,
|
|
pytestCheckHook,
|
|
setuptools-scm,
|
|
virtualenv,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "setuptools-declarative-requirements";
|
|
version = "1.3.0";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-V6W5u5rTUMJ46Kpr5M3rvNklubpx1qcSoXimGM+4mPc=";
|
|
};
|
|
|
|
buildInputs = [ setuptools-scm ];
|
|
|
|
nativeCheckInputs = [
|
|
pypiserver
|
|
pytestCheckHook
|
|
virtualenv
|
|
];
|
|
|
|
# Tests use network
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "declarative_requirements" ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/s0undt3ch/setuptools-declarative-requirements";
|
|
description = "Declarative setuptools Config Requirements Files Support";
|
|
license = licenses.asl20;
|
|
maintainers = [ maintainers.austinbutler ];
|
|
};
|
|
}
|