mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
22 lines
573 B
Nix
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 ];
|
|
};
|
|
}
|