python3Packages.pdunehd: init at 1.3.2

This commit is contained in:
Robert Schütz 2021-06-17 20:11:58 +02:00
parent c147520d3f
commit 00c2250571
2 changed files with 38 additions and 0 deletions

View file

@ -0,0 +1,36 @@
{ lib
, buildPythonPackage
, pythonOlder
, fetchFromGitHub
, requests
}:
buildPythonPackage rec {
pname = "pdunehd";
version = "1.3.2";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "valentinalexeev";
repo = "pdunehd";
rev = version;
sha256 = "06p0k82nf89rsakr8d2hdb19dp1wqp9bsf54lwb0qma47iakljjh";
};
propagatedBuildInputs = [
requests
];
# no tests implemented
doCheck = false;
pythonImportsCheck = [ "pdunehd" ];
meta = with lib; {
description = "Python wrapper for Dune HD media player API";
homepage = "https://github.com/valentinalexeev/pdunehd";
license = licenses.asl20;
maintainers = with maintainers; [ dotlambda ];
};
}

View file

@ -5160,6 +5160,8 @@ in {
phonenumbers = callPackage ../development/python-modules/phonenumbers { };
pdunehd = callPackage ../development/python-modules/pdunehd { };
phonopy = callPackage ../development/python-modules/phonopy { };
phpserialize = callPackage ../development/python-modules/phpserialize { };