depot/third_party/nixpkgs/pkgs/development/python-modules/kaptan/default.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

32 lines
615 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
'';
propagatedBuildInputs = [ pyyaml ];
checkInputs = [ pytest ];
meta = with lib; {
description = "Configuration manager for python applications";
homepage = "https://kaptan.readthedocs.io/";
license = licenses.bsd3;
maintainers = with maintainers; [ ];
};
}