12 buildPythonPackage rec {
13 pname = "itemloaders";
15 format = "setuptools";
17 disabled = pythonOlder "3.6";
19 src = fetchFromGitHub {
22 rev = "refs/tags/v${version}";
23 hash = "sha256-jwxxKfr/SI1yfjSQbYqggWxBwusBZNYySHwZXHftgFs=";
26 propagatedBuildInputs = [
38 # Test are failing (AssertionError: Lists differ: ...)
43 pythonImportsCheck = [
48 description = "Base library for scrapy's ItemLoader";
49 homepage = "https://github.com/scrapy/itemloaders";
50 changelog = "https://github.com/scrapy/itemloaders/raw/v${version}/docs/release-notes.rst";
51 license = licenses.bsd3;
52 maintainers = with maintainers; [ marsam ];