summary refs log tree commit diff
path: root/pkgs/development/compilers
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2021-07-20 23:07:53 +0200
committerSandro Jäckel <sandro.jaeckel@gmail.com>2021-07-21 13:32:49 +0200
commit9bfdf57e139e7e3b253979da828285bb8284a217 (patch)
tree3e28797f722e0de7188f54f1d11ff7ef07db1cb4 /pkgs/development/compilers
parent4209fed914e4362f952f4fa6d88c1808aa3df7b8 (diff)
downloadnixpkgs-9bfdf57e139e7e3b253979da828285bb8284a217.tar
nixpkgs-9bfdf57e139e7e3b253979da828285bb8284a217.tar.gz
nixpkgs-9bfdf57e139e7e3b253979da828285bb8284a217.tar.bz2
nixpkgs-9bfdf57e139e7e3b253979da828285bb8284a217.tar.lz
nixpkgs-9bfdf57e139e7e3b253979da828285bb8284a217.tar.xz
nixpkgs-9bfdf57e139e7e3b253979da828285bb8284a217.tar.zst
nixpkgs-9bfdf57e139e7e3b253979da828285bb8284a217.zip
pythonPackages: deprecate pytestrunner alias
Diffstat (limited to 'pkgs/development/compilers')
-rw-r--r--pkgs/development/compilers/vyper/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/compilers/vyper/default.nix b/pkgs/development/compilers/vyper/default.nix
index 4bdad5f7c61..7df42617748 100644
--- a/pkgs/development/compilers/vyper/default.nix
+++ b/pkgs/development/compilers/vyper/default.nix
@@ -1,6 +1,6 @@
 { lib, buildPythonPackage, fetchPypi, writeText, asttokens
 , pycryptodome, pytest_xdist, pytest-cov, recommonmark, semantic-version, sphinx
-, sphinx_rtd_theme, pytestrunner }:
+, sphinx_rtd_theme, pytest-runner }:
 
 let
   sample-contract = writeText "example.vy" ''
@@ -21,7 +21,7 @@ buildPythonPackage rec {
     sha256 = "e763561a161c35c03b92a0c176096dd9b4c78ab003c2f08324d443f459b3de84";
   };
 
-  nativeBuildInputs = [ pytestrunner ];
+  nativeBuildInputs = [ pytest-runner ];
 
   postPatch = ''
     substituteInPlace setup.py \