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
518 B
Nix
23 lines
518 B
Nix
{ stdenv, buildPythonPackage, fetchPypi, nose }:
|
|
|
|
buildPythonPackage rec {
|
|
version = "0.3.3";
|
|
pname = "ofxhome";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1rpyfqr2q9pnin47rjd4qapl8ngk1m9jx36iqckhdhr8s8gla445";
|
|
};
|
|
|
|
buildInputs = [ nose ];
|
|
|
|
# ImportError: No module named tests
|
|
doCheck = false;
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = "https://github.com/captin411/ofxhome";
|
|
description = "ofxhome.com financial institution lookup REST client";
|
|
license = licenses.mit;
|
|
};
|
|
}
|