2019-01-07 19:13:42 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, isPy27, isPy34
|
|
|
|
, enum34, functools32, typing
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "tomlkit";
|
2019-07-20 15:19:27 +01:00
|
|
|
version = "0.5.5";
|
2019-01-07 19:13:42 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-07-20 15:19:27 +01:00
|
|
|
sha256 = "0xlmx280mzd3f63ydqhr76whbr2lhcwihyg9my9d5hjklkrhdn58";
|
2019-01-07 19:13:42 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs =
|
|
|
|
lib.optionals isPy27 [ enum34 functools32 ]
|
|
|
|
++ lib.optional (isPy27 || isPy34) typing;
|
|
|
|
|
|
|
|
# The Pypi tarball doesn't include tests, and the GitHub source isn't
|
|
|
|
# buildable until we bootstrap poetry, see
|
|
|
|
# https://github.com/NixOS/nixpkgs/pull/53599#discussion_r245855665
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = https://github.com/sdispater/tomlkit;
|
|
|
|
description = "Style-preserving TOML library for Python";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ jakewaksbaum ];
|
|
|
|
};
|
|
|
|
}
|