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`.
21 lines
499 B
Nix
21 lines
499 B
Nix
{ lib, buildPythonPackage, fetchPypi, enum34 }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "enum-compat";
|
|
version = "0.0.2";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "14j1i963jic2vncbf9k5nq1vvv8pw2zsg7yvwhm7d9c6h7qyz74k";
|
|
};
|
|
|
|
propagatedBuildInputs = [ enum34 ];
|
|
|
|
meta = with lib; {
|
|
homepage = https://github.com/jstasiak/enum-compat;
|
|
description = "enum/enum34 compatibility package";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ abbradar ];
|
|
};
|
|
}
|