33 lines
655 B
Nix
33 lines
655 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
pythonOlder,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "rcssmin";
|
|
version = "1.2.2";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-gGmG6vdBRUXtwoodKVI+lWDknhUf9KM32dHwJx1uHMQ=";
|
|
};
|
|
|
|
# The package does not ship tests, and the setup machinery confuses
|
|
# tests auto-discovery
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "rcssmin" ];
|
|
|
|
meta = with lib; {
|
|
description = "CSS minifier written in pure python";
|
|
homepage = "http://opensource.perlig.de/rcssmin/";
|
|
license = licenses.asl20;
|
|
maintainers = [ ];
|
|
};
|
|
}
|