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

35 lines
709 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, pyyaml
, pytest
}:
buildPythonPackage rec {
pname = "kaptan";
version = "0.5.12";
src = fetchPypi {
inherit pname version;
sha256 = "1abd1f56731422fce5af1acc28801677a51e56f5d3c3e8636db761ed143c3dd2";
};
postPatch = ''
sed -i "s/==.*//g" requirements/test.txt
substituteInPlace requirements/base.txt --replace 'PyYAML>=3.13,<6' 'PyYAML>=3.13'
'';
propagatedBuildInputs = [ pyyaml ];
nativeCheckInputs = [ pytest ];
meta = with lib; {
description = "Configuration manager for python applications";
homepage = "https://kaptan.readthedocs.io/";
license = licenses.bsd3;
maintainers = with maintainers; [ ];
};
}