aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/itemadapter/default.nix
blob: 92cc794dc2f2acf04cfcd57457cafb91ceb2d292 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ lib, buildPythonPackage, fetchPypi, isPy27 }:

buildPythonPackage rec {
  pname = "itemadapter";
  version = "0.1.0";

  disabled = isPy27;

  src = fetchPypi {
    inherit pname version;
    sha256 = "52159b4f97d82aa2968000ee8371b2114af56a2f44e4cd9142580d46eea39020";
  };

  doCheck = false; # infinite recursion with Scrapy

  pythonImportsCheck = [ "itemadapter" ];

  meta = with lib; {
    description = "Common interface for data container classes";
    homepage = "https://github.com/scrapy/itemadapter";
    license = licenses.bsd3;
    maintainers = [ maintainers.marsam ];
  };
}