nixpkgs/pkgs/development/python-modules/w3lib/default.nix
R. RyanTM 477a34d960 python37Packages.w3lib: 1.19.0 -> 1.20.0 (#54063)
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.7-w3lib/versions
2019-01-16 16:43:14 +01:00

27 lines
504 B
Nix

{ stdenv
, buildPythonPackage
, fetchPypi
, six
, pytest
}:
buildPythonPackage rec {
pname = "w3lib";
version = "1.20.0";
src = fetchPypi {
inherit pname version;
sha256 = "1mqwlc1cr15jxr3gr8pqqh5gf0gppm2kcvdi8vid6y8wmq9bjkg5";
};
buildInputs = [ six pytest ];
meta = with stdenv.lib; {
description = "A library of web-related functions";
homepage = "https://github.com/scrapy/w3lib";
license = licenses.bsd3;
maintainers = with maintainers; [ drewkett ];
};
}