nixpkgs/pkgs/development/python-modules/tomlkit/default.nix

30 lines
832 B
Nix
Raw Normal View History

2020-05-04 19:32:01 +01:00
{ lib, buildPythonPackage, fetchPypi, isPy27
, enum34, functools32, typing ? null
2019-01-07 19:13:42 +00:00
}:
buildPythonPackage rec {
pname = "tomlkit";
version = "0.7.2";
2019-01-07 19:13:42 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "d7a454f319a7e9bd2e249f239168729327e4dd2d27b17dc68be264ad1ce36754";
2019-01-07 19:13:42 +00:00
};
propagatedBuildInputs =
lib.optionals isPy27 [ enum34 functools32 ]
2020-05-04 19:32:01 +01:00
++ lib.optional isPy27 typing;
2019-01-07 19:13:42 +00:00
# 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";
2019-01-07 19:13:42 +00:00
description = "Style-preserving TOML library for Python";
license = licenses.mit;
maintainers = with maintainers; [ jakewaksbaum ];
};
}