blob: d635e13706f4b7fc2da2444bac1515d5f5a0663c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
{
lib,
buildPythonPackage,
fetchPypi,
}:
buildPythonPackage rec {
pname = "rcssmin";
version = "1.2.2";
format = "setuptools";
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 = {
description = "CSS minifier written in pure python";
homepage = "http://opensource.perlig.de/rcssmin/";
license = lib.licenses.asl20;
maintainers = [ ];
};
}
|