pkgs/development: rename name to pname&version

This commit is contained in:
Felix Buehler
2021-11-10 14:03:21 +01:00
parent 7a7550f214
commit 345d71ffd0
52 changed files with 196 additions and 130 deletions
@@ -3,11 +3,12 @@
# This derivation does not provide any Python module and should therefore be called via `all-packages.nix`.
let
pythonEnv = python3.withPackages(ps: with ps; [ sphinx ]);
in stdenv.mkDerivation {
name = "pyside-apiextractor-0.10.10";
in stdenv.mkDerivation rec {
pname = "pyside-apiextractor";
version = "0.10.10";
src = fetchurl {
url = "https://github.com/PySide/Apiextractor/archive/0.10.10.tar.gz";
url = "https://github.com/PySide/Apiextractor/archive/${version}.tar.gz";
sha256 = "1zj8yrxy08iv1pk38djxw3faimm226w6wmi0gm32w4yczblylwz3";
};