nixpkgs/pkgs/development/python-modules/proboscis/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

21 lines
559 B
Nix

{ stdenv, buildPythonPackage, fetchPypi, nose }:
buildPythonPackage rec {
pname = "proboscis";
version = "1.2.6.0";
src = fetchPypi {
inherit pname version;
sha256 = "b822b243a7c82030fce0de97bdc432345941306d2c24ef227ca561dd019cd238";
};
propagatedBuildInputs = [ nose ];
doCheck = false;
meta = with stdenv.lib; {
description = "A Python test framework that extends Python's built-in unittest module and Nose with features from TestNG";
homepage = https://pypi.python.org/pypi/proboscis;
license = licenses.asl20;
};
}