mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 01:43:15 +00:00
python.pkgs.cssselect2: init at 0.2.1
This commit is contained in:
parent
6133e6525a
commit
701c6ed360
23
pkgs/development/python-modules/cssselect2/default.nix
Normal file
23
pkgs/development/python-modules/cssselect2/default.nix
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
{ lib, buildPythonPackage, fetchPypi, tinycss2, pytestrunner, pytestcov, pytest-flake8, pytest-isort, glibcLocales }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "cssselect2";
|
||||||
|
version = "0.2.1";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "505d2ce3d3a1d390ddb52f7d0864b7efeb115a5b852a91861b498b92424503ab";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ tinycss2 ];
|
||||||
|
|
||||||
|
checkInputs = [ pytestrunner pytestcov pytest-flake8 pytest-isort glibcLocales ];
|
||||||
|
|
||||||
|
LC_ALL = "en_US.UTF-8";
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "CSS selectors for Python ElementTree";
|
||||||
|
homepage = https://github.com/Kozea/cssselect2;
|
||||||
|
license = licenses.bsd3;
|
||||||
|
};
|
||||||
|
}
|
@ -2009,6 +2009,8 @@ in {
|
|||||||
|
|
||||||
cssselect = callPackage ../development/python-modules/cssselect { };
|
cssselect = callPackage ../development/python-modules/cssselect { };
|
||||||
|
|
||||||
|
cssselect2 = callPackage ../development/python-modules/cssselect2 { };
|
||||||
|
|
||||||
cssutils = callPackage ../development/python-modules/cssutils { };
|
cssutils = callPackage ../development/python-modules/cssutils { };
|
||||||
|
|
||||||
darcsver = callPackage ../development/python-modules/darcsver { };
|
darcsver = callPackage ../development/python-modules/darcsver { };
|
||||||
|
Loading…
Reference in New Issue
Block a user