Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / kconfiglib / default.nix
blobba8fecc470b74dda0520f35ed32b427250b3c7eb
1 { lib, buildPythonPackage, fetchPypi }:
3 buildPythonPackage rec {
4   pname = "kconfiglib";
5   version = "14.1.0";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "0g690bk789hsry34y4ahvly5c8w8imca90ss4njfqf7m2qicrlmy";
10   };
12   # doesnt work out of the box but might be possible
13   doCheck = false;
15   meta = with lib; {
16     description = "A flexible Python 2/3 Kconfig implementation and library";
17     homepage = "https://github.com/ulfalizer/Kconfiglib";
18     license = licenses.isc;
19     maintainers = with maintainers; [ teto ];
20   };