14 buildPythonPackage rec {
15 pname = "itemloaders";
19 disabled = pythonOlder "3.8";
21 src = fetchFromGitHub {
24 rev = "refs/tags/v${version}";
25 hash = "sha256-u0/WsvLn2YlYd/FuH26T9qEGRGscipnOQbV9uPv4F+M=";
28 nativeBuildInputs = [ setuptools ];
30 propagatedBuildInputs = [
37 nativeCheckInputs = [ pytestCheckHook ];
39 pythonImportsCheck = [ "itemloaders" ];
42 description = "Library to populate items using XPath and CSS with a convenient API";
43 homepage = "https://github.com/scrapy/itemloaders";
44 changelog = "https://github.com/scrapy/itemloaders/raw/v${version}/docs/release-notes.rst";
45 license = licenses.bsd3;