mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 07:46:09 +01:00
pythonPackages.audio-metadata: init at 0.3.0
This commit is contained in:
parent
41b69023da
commit
ec669e2ca3
2 changed files with 39 additions and 0 deletions
37
pkgs/development/python-modules/audio-metadata/default.nix
Normal file
37
pkgs/development/python-modules/audio-metadata/default.nix
Normal file
|
@ -0,0 +1,37 @@
|
||||||
|
{ lib, buildPythonPackage, fetchPypi, pythonOlder
|
||||||
|
, attrs
|
||||||
|
, bidict
|
||||||
|
, bitstruct
|
||||||
|
, more-itertools
|
||||||
|
, pprintpp
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "audio-metadata";
|
||||||
|
version = "0.3.0";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "1jd0wzhh9as2qyiwggqmvsbsm5nlb73qnxix2mcar53cddvwrvj7";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
attrs
|
||||||
|
bidict
|
||||||
|
bitstruct
|
||||||
|
more-itertools
|
||||||
|
pprintpp
|
||||||
|
];
|
||||||
|
|
||||||
|
# No tests
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
disabled = pythonOlder "3.6";
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
homepage = https://github.com/thebigmunch/audio-metadata;
|
||||||
|
description = "A library for reading and, in the future, writing metadata from audio files";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ jakewaksbaum ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -935,6 +935,8 @@ in {
|
||||||
|
|
||||||
atsim_potentials = callPackage ../development/python-modules/atsim_potentials { };
|
atsim_potentials = callPackage ../development/python-modules/atsim_potentials { };
|
||||||
|
|
||||||
|
audio-metadata = callPackage ../development/python-modules/audio-metadata { };
|
||||||
|
|
||||||
audioread = callPackage ../development/python-modules/audioread { };
|
audioread = callPackage ../development/python-modules/audioread { };
|
||||||
|
|
||||||
audiotools = callPackage ../development/python-modules/audiotools { };
|
audiotools = callPackage ../development/python-modules/audiotools { };
|
||||||
|
|
Loading…
Reference in a new issue