1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/development/python-modules/pylast/default.nix

25 lines
629 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchPypi, certifi, six }:
buildPythonPackage rec {
pname = "pylast";
2017-08-24 18:34:20 +01:00
version = "1.9.0";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
2017-08-24 18:34:20 +01:00
sha256 = "ae1c4105cbe704d9ac10ba57ac4c26bc576cc33978f1b578101b20c6a2360ca4";
};
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 ];
};
}