1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/development/python-modules/browsermob-proxy/default.nix
Frederik Rietdijk ced21f5e1a pythonPackages: remove name attribute`
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`.
2018-06-23 18:14:26 +02:00

26 lines
548 B
Nix

{ lib
, stdenv
, buildPythonPackage
, fetchPypi
, requests
}:
buildPythonPackage rec {
pname = "browsermob-proxy";
version = "0.8.0";
src = fetchPypi {
inherit pname version;
sha256 = "1bxvmghm834gsfz3pm69772wzhh15p8ci526b25dpk3z4315nd7v";
};
propagatedBuildInputs = [ requests ];
meta = {
description = "A library for interacting with Browsermob Proxy";
homepage = http://oss.theautomatedtester.co.uk/browsermob-proxy-py;
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ raskin ];
};
}