3
0
Fork 0
forked from mirrors/nixpkgs

pythonPackages.tinycss: 0.3 -> 0.4 refactor move to python-modules (#48163)

This commit is contained in:
Christopher Ostrouchov 2018-10-12 18:16:47 -04:00 committed by xeji
parent 340c76263d
commit adbdba25d0
2 changed files with 36 additions and 26 deletions

View file

@ -0,0 +1,35 @@
{ pkgs
, buildPythonPackage
, fetchPypi
, pytest
, python
, cssutils
, isPyPy
}:
buildPythonPackage rec {
pname = "tinycss";
version = "0.4";
src = fetchPypi {
inherit pname version;
sha256 = "12306fb50e5e9e7eaeef84b802ed877488ba80e35c672867f548c0924a76716e";
};
checkInputs = [ pytest ];
propagatedBuildInputs = [ cssutils ];
checkPhase = ''
py.test $out/${python.sitePackages}
'';
# Disable Cython tests for PyPy
TINYCSS_SKIP_SPEEDUPS_TESTS = pkgs.lib.optional isPyPy true;
meta = with pkgs.lib; {
description = "Complete yet simple CSS parser for Python";
license = licenses.bsd3;
homepage = https://pythonhosted.org/tinycss/;
maintainers = [ maintainers.costrouc ];
};
}

View file

@ -1979,32 +1979,7 @@ in {
pytest-sugar = callPackage ../development/python-modules/pytest-sugar { };
tinycss = buildPythonPackage rec {
name = "tinycss-${version}";
version = "0.3";
src = pkgs.fetchurl {
url = "mirror://pypi/t/tinycss/${name}.tar.gz";
sha256 = "1pichqra4wk86142hqgvy9s5x6c5k5zhy8l9qxr0620pqk8spbd4";
};
buildInputs = with self; [ pytest ];
propagatedBuildInputs = with self; [ cssutils ];
checkPhase = ''
py.test $out/${python.sitePackages}
'';
# Disable Cython tests for PyPy
TINYCSS_SKIP_SPEEDUPS_TESTS = optional isPyPy true;
meta = {
description = "Complete yet simple CSS parser for Python";
license = licenses.bsd3;
homepage = https://pythonhosted.org/tinycss/;
};
};
tinycss = callPackage ../development/python-modules/tinycss { };
tinycss2 = callPackage ../development/python-modules/tinycss2 { };