mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
90c6fbabf2
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python2.7-pycdio/versions
45 lines
997 B
Nix
45 lines
997 B
Nix
{ stdenv
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, setuptools
|
|
, nose
|
|
, pkgs
|
|
, isPy27
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pycdio";
|
|
version = "2.1.0";
|
|
disabled = !isPy27;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "01b7vqqfry071p60sabydym7r3m3rxszyqpdbs1qi5rk2sfyblnn";
|
|
};
|
|
|
|
prePatch = "sed -i -e '/DRIVER_BSDI/d' pycdio.py";
|
|
|
|
preConfigure = ''
|
|
patchShebangs .
|
|
'';
|
|
|
|
nativeBuildInputs = [ nose pkgs.pkgconfig pkgs.swig ];
|
|
buildInputs = [ setuptools pkgs.libcdio ]
|
|
++ stdenv.lib.optional stdenv.isDarwin pkgs.libiconv;
|
|
|
|
# Run tests using nosetests but first need to install the binaries
|
|
# to the root source directory where they can be found.
|
|
checkPhase = ''
|
|
./setup.py install_lib -d .
|
|
nosetests
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://www.gnu.org/software/libcdio/;
|
|
description = "Wrapper around libcdio (CD Input and Control library)";
|
|
maintainers = with maintainers; [ rycee ];
|
|
license = licenses.gpl3Plus;
|
|
};
|
|
|
|
}
|