nixpkgs/pkgs/development/python-modules/versionfinder/default.nix
Guillaume Girol 33afbf39f6 treewide: switch to nativeCheckInputs
checkInputs used to be added to nativeBuildInputs. Now we have
nativeCheckInputs to do that instead. Doing this treewide change allows
to keep hashes identical to before the introduction of
nativeCheckInputs.
2023-01-21 12:00:00 +00:00

57 lines
1.1 KiB
Nix

{ lib
, backoff
, buildPythonPackage
, fetchFromGitHub
, gitpython
, pytestCheckHook
, pythonOlder
, requests
}:
buildPythonPackage rec {
pname = "versionfinder";
version = "1.1.1";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "jantman";
repo = pname;
rev = version;
sha256 = "16mvjwyhmw39l8by69dgr9b9jnl7yav36523lkh7w7pwd529pbb9";
};
propagatedBuildInputs = [
gitpython
backoff
];
nativeCheckInputs = [
pytestCheckHook
requests
];
disabledTestPaths = [
# Acceptance tests use the network
"versionfinder/tests/test_acceptance.py"
];
disabledTests = [
# Tests are out-dated
"TestFindPipInfo"
];
pythonImportsCheck = [
"versionfinder"
];
meta = with lib; {
description = "Find the version of another package, whether installed via pip, setuptools or git";
homepage = "https://github.com/jantman/versionfinder";
changelog = "https://github.com/jantman/versionfinder/blob/${version}/CHANGES.rst";
license = licenses.agpl3Plus;
maintainers = with maintainers; [ zakame ];
};
}