mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
ced21f5e1a
The `buildPython*` function computes name from `pname` and `version`. This change removes `name` attribute from all expressions in `pkgs/development/python-modules`. While at it, some other minor changes were made as well, such as replacing `fetchurl` calls with `fetchPypi`.
27 lines
724 B
Nix
27 lines
724 B
Nix
{ lib, buildPythonPackage, fetchPypi, pbr }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "requestsexceptions";
|
|
version = "1.4.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "b095cbc77618f066d459a02b137b020c37da9f46d9b057704019c9f77dba3065";
|
|
};
|
|
|
|
propagatedBuildInputs = [ pbr ];
|
|
|
|
# upstream hacking package is not required for functional testing
|
|
patchPhase = ''
|
|
sed -i '/^hacking/d' test-requirements.txt
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Import exceptions from potentially bundled packages in requests.";
|
|
homepage = "https://pypi.python.org/pypi/requestsexceptions";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ makefu ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|