forked from mirrors/nixpkgs
pythonPackages.itemadapter: init at 0.1.0
This commit is contained in:
parent
65286e8e20
commit
eb19c37b70
24
pkgs/development/python-modules/itemadapter/default.nix
Normal file
24
pkgs/development/python-modules/itemadapter/default.nix
Normal file
|
@ -0,0 +1,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 ];
|
||||
};
|
||||
}
|
|
@ -886,6 +886,8 @@ in {
|
|||
|
||||
itanium_demangler = callPackage ../development/python-modules/itanium_demangler { };
|
||||
|
||||
itemadapter = callPackage ../development/python-modules/itemadapter { };
|
||||
|
||||
iterm2 = callPackage ../development/python-modules/iterm2 { };
|
||||
|
||||
janus = callPackage ../development/python-modules/janus { };
|
||||
|
|
Loading…
Reference in a new issue