nixpkgs/pkgs/development/python-modules/parts/default.nix

26 lines
577 B
Nix
Raw Normal View History

2021-03-06 20:48:17 +00:00
{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "parts";
2021-06-18 21:47:28 +00:00
version = "1.0.3";
2021-03-06 20:48:17 +00:00
src = fetchPypi {
inherit pname version;
2021-06-18 21:47:28 +00:00
sha256 = "a4137612bc050f606b4d6f9e6a554ebfb50633c8dd9699481f82271f84d9425f";
2021-03-06 20:48:17 +00:00
};
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "parts" ];
meta = with lib; {
description = "Python library for common list functions related to partitioning lists";
homepage = "https://github.com/lapets/parts";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}