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`.
23 lines
606 B
Nix
23 lines
606 B
Nix
{ stdenv, buildPythonPackage, fetchPypi, pytest, pytestrunner, six, regex}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "rebulk";
|
|
version = "0.9.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1sw516ihfrb7i9bfl1n3049akvb23mpsk3llh7w3xfnbvkfrpip0";
|
|
};
|
|
|
|
# Some kind of trickery with imports that doesn't work.
|
|
doCheck = false;
|
|
buildInputs = [ pytest pytestrunner ];
|
|
propagatedBuildInputs = [ six regex ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://github.com/Toilal/rebulk/;
|
|
license = licenses.mit;
|
|
description = "Advanced string matching from simple patterns";
|
|
};
|
|
}
|