python.pkgs.mygpoclient: 1.7 -> 1.8
This commit is contained in:
31
pkgs/development/python-modules/mygpoclient/default.nix
Normal file
31
pkgs/development/python-modules/mygpoclient/default.nix
Normal file
@@ -0,0 +1,31 @@
|
||||
{ stdenv, fetchFromGitHub, buildPythonPackage, nose, minimock }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
name = "mygpoclient-${version}";
|
||||
version = "1.8";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "gpodder";
|
||||
repo = "mygpoclient";
|
||||
rev = version;
|
||||
sha256 = "0aa28wc55x3rxa7clwfv5v5500ffyaq0vkxaa3v01y1r93dxkdvp";
|
||||
};
|
||||
|
||||
buildInputs = [ nose minimock ];
|
||||
|
||||
checkPhase = ''
|
||||
nosetests
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A gpodder.net client library";
|
||||
longDescription = ''
|
||||
The mygpoclient library allows developers to utilize a Pythonic interface
|
||||
to the gpodder.net web services.
|
||||
'';
|
||||
homepage = https://github.com/gpodder/mygpoclient;
|
||||
license = with licenses; [ gpl3 ];
|
||||
platforms = with platforms; linux ++ darwin;
|
||||
maintainers = with maintainers; [ skeidel ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user