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
597 B
Nix
24 lines
597 B
Nix
{ stdenv, buildPythonPackage, fetchPypi, certifi, six }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pylast";
|
|
version = "2.3.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "f1e8615bac27386712ab74338e6dbd01ff7adbf6648a3debf921cef6bad80014";
|
|
};
|
|
|
|
propagatedBuildInputs = [ certifi six ];
|
|
|
|
# tests require last.fm credentials
|
|
doCheck = false;
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://github.com/pylast/pylast;
|
|
description = "A python interface to last.fm (and compatibles)";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ rvolosatovs ];
|
|
};
|
|
}
|