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

30 lines
633 B
Nix

{ buildPythonPackage
, lib
, fetchPypi
, pytest
, u-msgpack-python
, six
}:
buildPythonPackage rec {
pname = "pytest-expect";
version = "1.1.0";
src = fetchPypi {
inherit pname version;
sha256 = "36b4462704450798197d090809a05f4e13649d9cba9acdc557ce9517da1fd847";
};
buildInputs = [ pytest ];
propagatedBuildInputs = [ u-msgpack-python six ];
# Tests in neither the archive nor the repo
doCheck = false;
meta = {
description = "py.test plugin to store test expectations and mark tests based on them";
homepage = https://github.com/gsnedders/pytest-expect;
license = lib.licenses.mit;
};
}