My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/cssselect/default.nix

17 lines
354 B

{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "cssselect";
version = "1.1.0";
src = fetchPypi {
inherit pname version;
sha256 = "f95f8dedd925fd8f54edb3d2dfb44c190d9d18512377d3c1e2388d16126879bc";
};
# AttributeError: 'module' object has no attribute 'tests'
doCheck = false;
meta = with lib; {
};
}