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`.
24 lines
641 B
Nix
24 lines
641 B
Nix
{ stdenv, buildPythonPackage, fetchPypi, pip }:
|
|
buildPythonPackage rec {
|
|
pname = "setuptools_scm";
|
|
version = "2.1.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "a767141fecdab1c0b3c8e4c788ac912d7c94a0d6c452d40777ba84f918316379";
|
|
};
|
|
|
|
buildInputs = [ pip ];
|
|
|
|
# Seems to fail due to chroot and would cause circular dependency
|
|
# with pytest
|
|
doCheck = false;
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://bitbucket.org/pypa/setuptools_scm/;
|
|
description = "Handles managing your python package versions in scm metadata";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ jgeerds ];
|
|
};
|
|
}
|