treewide: name -> pname (easy cases) (#66585)
treewide replacement of
stdenv.mkDerivation rec {
name = "*-${version}";
version = "*";
to pname
This commit is contained in:
@@ -1,13 +1,13 @@
|
||||
{ stdenv, fetchurl, buildPythonApplication, click, future, six }:
|
||||
|
||||
buildPythonApplication rec {
|
||||
name = "proselint-${version}";
|
||||
pname = "proselint";
|
||||
version = "0.10.2";
|
||||
|
||||
doCheck = false; # fails to pass because it tries to run in home directory
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://pypi/p/proselint/${name}.tar.gz";
|
||||
url = "mirror://pypi/p/proselint/${pname}-${version}.tar.gz";
|
||||
sha256 = "017risn0j1bjy9ygzfgphjnyjl4gk7wbrr4qv1vvrlan60wyp1rs";
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user