mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
34 lines
682 B
Nix
34 lines
682 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, python
|
|
, pythonOlder
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "slicerator";
|
|
version = "1.1.0";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-RAEKf1zYdoDAchO1yr6B0ftxJSlilD5Tc+59FGBdYEY=";
|
|
};
|
|
|
|
checkPhase = ''
|
|
${python.interpreter} run_tests.py
|
|
'';
|
|
|
|
# run_tests.py not packaged with pypi release
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "A lazy-loading, fancy-sliceable iterable";
|
|
homepage = "https://github.com/soft-matter/slicerator";
|
|
license = licenses.bsdOriginal;
|
|
maintainers = with maintainers; [ costrouc ];
|
|
};
|
|
}
|