mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
ced21f5e1a
The `buildPython*` function computes name from `pname` and `version`. This change removes `name` attribute from all expressions in `pkgs/development/python-modules`. While at it, some other minor changes were made as well, such as replacing `fetchurl` calls with `fetchPypi`.
26 lines
707 B
Nix
26 lines
707 B
Nix
{ stdenv, libdiscid, buildPythonPackage, fetchPypi }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "discid";
|
|
version = "1.1.1";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "78a3bf6c8377fdbe3d85e914a209ff97aa43e35605779639847b510ced31f7b9";
|
|
};
|
|
|
|
patchPhase =
|
|
let extension = stdenv.hostPlatform.extensions.sharedLibrary; in
|
|
''
|
|
substituteInPlace discid/libdiscid.py \
|
|
--replace "_open_library(_LIB_NAME)" \
|
|
"_open_library('${libdiscid}/lib/libdiscid${extension}')"
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Python binding of libdiscid";
|
|
homepage = "https://python-discid.readthedocs.org/";
|
|
license = licenses.lgpl3Plus;
|
|
};
|
|
}
|