python3Packages.pdunehd: init at 1.3.2
This commit is contained in:
parent
c147520d3f
commit
00c2250571
2 changed files with 38 additions and 0 deletions
36
pkgs/development/python-modules/pdunehd/default.nix
Normal file
36
pkgs/development/python-modules/pdunehd/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue