2018-10-16 19:05:25 +01:00
|
|
|
{ stdenv
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, pyyaml
|
2019-04-23 09:37:44 +01:00
|
|
|
, pytest
|
2018-10-16 19:05:25 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "kaptan";
|
2019-04-23 09:37:44 +01:00
|
|
|
version = "0.5.12";
|
2018-10-16 19:05:25 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-04-23 09:37:44 +01:00
|
|
|
sha256 = "1abd1f56731422fce5af1acc28801677a51e56f5d3c3e8636db761ed143c3dd2";
|
2018-10-16 19:05:25 +01:00
|
|
|
};
|
|
|
|
|
2019-04-10 09:33:04 +01:00
|
|
|
postPatch = ''
|
2019-04-23 09:37:44 +01:00
|
|
|
sed -i "s/==.*//g" requirements/test.txt
|
2019-04-10 09:33:04 +01:00
|
|
|
'';
|
|
|
|
|
2018-10-16 19:05:25 +01:00
|
|
|
propagatedBuildInputs = [ pyyaml ];
|
|
|
|
|
2019-04-23 09:37:44 +01:00
|
|
|
checkInputs = [ pytest ];
|
2019-01-06 16:33:25 +00:00
|
|
|
|
2018-10-16 19:05:25 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Configuration manager for python applications";
|
2019-01-06 16:33:25 +00:00
|
|
|
homepage = https://kaptan.readthedocs.io/;
|
2018-10-16 19:05:25 +01:00
|
|
|
license = licenses.bsd3;
|
2019-03-12 22:45:33 +00:00
|
|
|
maintainers = with maintainers; [ ];
|
2018-10-16 19:05:25 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|