summary refs log tree commit diff
path: root/pkgs/os-specific/linux/dstat
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2017-03-21 13:01:17 +0100
committerFrederik Rietdijk <fridh@fridh.nl>2017-03-21 13:01:49 +0100
commit3760c8c7fde6e8b15d19b063579d05018fc2d8b3 (patch)
treeb081b03bcb4bc6f9de14a96c185e4731a64355d5 /pkgs/os-specific/linux/dstat
parent1b0d9e9ae64b677c09f345f740f5a94fa41eb468 (diff)
downloadnixpkgs-3760c8c7fde6e8b15d19b063579d05018fc2d8b3.tar
nixpkgs-3760c8c7fde6e8b15d19b063579d05018fc2d8b3.tar.gz
nixpkgs-3760c8c7fde6e8b15d19b063579d05018fc2d8b3.tar.bz2
nixpkgs-3760c8c7fde6e8b15d19b063579d05018fc2d8b3.tar.lz
nixpkgs-3760c8c7fde6e8b15d19b063579d05018fc2d8b3.tar.xz
nixpkgs-3760c8c7fde6e8b15d19b063579d05018fc2d8b3.tar.zst
nixpkgs-3760c8c7fde6e8b15d19b063579d05018fc2d8b3.zip
Python: replace mkPythonDerivation with buildPythonPackage and format="other";
This way all Python packages use the same function,
`buildPythonPackage`.
Diffstat (limited to 'pkgs/os-specific/linux/dstat')
-rw-r--r--pkgs/os-specific/linux/dstat/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/os-specific/linux/dstat/default.nix b/pkgs/os-specific/linux/dstat/default.nix
index ccedc381504..366cc9787f2 100644
--- a/pkgs/os-specific/linux/dstat/default.nix
+++ b/pkgs/os-specific/linux/dstat/default.nix
@@ -1,7 +1,8 @@
 { stdenv, fetchurl, python2Packages }:
 
-python2Packages.mkPythonDerivation rec {
+python2Packages.buildPythonApplication rec {
   name = "dstat-${version}";
+  format = "other";
   version = "0.7.3";
 
   src = fetchurl {