nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5}:
6
7buildPythonPackage rec {
8 pname = "rcssmin";
9 version = "1.2.2";
10 format = "setuptools";
11
12 src = fetchPypi {
13 inherit pname version;
14 hash = "sha256-gGmG6vdBRUXtwoodKVI+lWDknhUf9KM32dHwJx1uHMQ=";
15 };
16
17 # The package does not ship tests, and the setup machinery confuses
18 # tests auto-discovery
19 doCheck = false;
20
21 pythonImportsCheck = [ "rcssmin" ];
22
23 meta = {
24 description = "CSS minifier written in pure python";
25 homepage = "http://opensource.perlig.de/rcssmin/";
26 license = lib.licenses.asl20;
27 maintainers = [ ];
28 };
29}