nixpkgs/pkgs/development/python-modules/enum-compat/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
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 ];
};
}