dotnet: improve language coverage of passthru.tests for dotnet sdks (#370789)
[NixPkgs.git] / pkgs / development / python-modules / parts / default.nix
blob33a8c7da394811228a6e93069aa414125dce797f
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   pythonOlder,
6   setuptools,
7   wheel,
8 }:
10 buildPythonPackage rec {
11   pname = "parts";
12   version = "2.1.0";
13   format = "pyproject";
15   disabled = pythonOlder "3.7";
17   src = fetchPypi {
18     inherit pname version;
19     hash = "sha256-zauHOv8pM47CVIQIo8aMMPZJgwIowgbVLvfFWzIqHoc=";
20   };
22   nativeBuildInputs = [
23     setuptools
24     wheel
25   ];
27   # Project has no tests
28   doCheck = false;
30   pythonImportsCheck = [ "parts" ];
32   meta = with lib; {
33     description = "Library for common list functions related to partitioning lists";
34     homepage = "https://github.com/lapets/parts";
35     license = with licenses; [ mit ];
36     maintainers = with maintainers; [ fab ];
37   };