nixpkgs/pkgs/development/python-modules/iniconfig/default.nix
2020-11-06 04:20:00 +00:00

22 lines
573 B
Nix

{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "iniconfig";
version = "1.1.1";
src = fetchPypi {
inherit pname version;
sha256 = "bc3af051d7d14b2ee5ef9969666def0cd1a000e121eaea580d4a313df4b37f32";
};
doCheck = false; # avoid circular import with pytest
pythonImportsCheck = [ "iniconfig" ];
meta = with lib; {
description = "brain-dead simple parsing of ini files";
homepage = "https://github.com/RonnyPfannschmidt/iniconfig";
license = licenses.mit;
maintainers = with maintainers; [ jonringer ];
};
}