Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / stdlib-list / default.nix
blob86f7c6a7d629f4c4f8f89c71aa4a4b0264429042
1 { lib
2 , buildPythonPackage
3 , fetchPypi
5 # build-system
6 , flit-core
7 }:
9 buildPythonPackage rec {
10   pname = "stdlib-list";
11   version = "0.10.0";
12   format = "pyproject";
14   src = fetchPypi {
15     pname = "stdlib_list";
16     inherit version;
17     hash = "sha256-ZRnFDWRVE+0odle/6FbVJ/J3MxVAaR3er3eyVFmWShQ=";
18   };
20   nativeBuildInputs = [
21     flit-core
22   ];
24   pythonImportsCheck = [
25     "stdlib_list"
26   ];
28   # tests see mismatches to our standard library
29   doCheck = false;
31   meta = with lib; {
32     changelog = "https://github.com/pypi/stdlib-list/releases/tag/v${version}";
33     description = "A list of Python Standard Libraries";
34     homepage = "https://github.com/jackmaney/python-stdlib-list";
35     license = licenses.mit;
36     maintainers = with maintainers; [ hexa ];
37   };