nixpkgs/pkgs/development/python-modules/cssselect/default.nix

18 lines
364 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "cssselect";
2018-04-04 19:05:06 +01:00
version = "1.0.3";
src = fetchPypi {
inherit pname version;
2018-04-04 19:05:06 +01:00
sha256 = "066d8bc5229af09617e24b3ca4d52f1f9092d9e061931f4184cd572885c23204";
};
# AttributeError: 'module' object has no attribute 'tests'
doCheck = false;
meta = with stdenv.lib; {
};
}