nixpkgs/pkgs/development/python-modules/pyct/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

43 lines
693 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, isPy27
, param
, pytestCheckHook
, pyyaml
, requests
}:
buildPythonPackage rec {
pname = "pyct";
version = "0.4.8";
src = fetchPypi {
inherit pname version;
sha256 = "23d7525b5a1567535c093aea4b9c33809415aa5f018dd77f6eb738b1226df6f7";
};
propagatedBuildInputs = [
param
pyyaml
requests
];
nativeCheckInputs = [
pytestCheckHook
];
doCheck = !isPy27;
pythonImportsCheck = [
"pyct"
];
meta = with lib; {
description = "ClI for Python common tasks for users";
homepage = "https://github.com/pyviz/pyct";
license = licenses.bsd3;
maintainers = with maintainers; [ costrouc ];
};
}