summary refs log tree commit diff
path: root/pkgs/development/python-modules/sasmodels
diff options
context:
space:
mode:
authorAdam Washington <adam.washington@stfc.ac.uk>2018-03-22 17:44:27 +0000
committerAdam Washington <adam.washington@stfc.ac.uk>2018-03-22 17:44:27 +0000
commit392def733b61855e667c7ce7a777a6bdc397ef44 (patch)
tree31edc9ec826c696b4505a032d08b8727db61a6d4 /pkgs/development/python-modules/sasmodels
parent068d792fedbfb6f14b9f7bb52179a392e6886e52 (diff)
downloadnixlib-392def733b61855e667c7ce7a777a6bdc397ef44.tar
nixlib-392def733b61855e667c7ce7a777a6bdc397ef44.tar.gz
nixlib-392def733b61855e667c7ce7a777a6bdc397ef44.tar.bz2
nixlib-392def733b61855e667c7ce7a777a6bdc397ef44.tar.lz
nixlib-392def733b61855e667c7ce7a777a6bdc397ef44.tar.xz
nixlib-392def733b61855e667c7ce7a777a6bdc397ef44.tar.zst
nixlib-392def733b61855e667c7ce7a777a6bdc397ef44.zip
Remove lint from Sasview package
Diffstat (limited to 'pkgs/development/python-modules/sasmodels')
-rw-r--r--pkgs/development/python-modules/sasmodels/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/sasmodels/default.nix b/pkgs/development/python-modules/sasmodels/default.nix
index 06e9adf197a9..d33de9c2a73a 100644
--- a/pkgs/development/python-modules/sasmodels/default.nix
+++ b/pkgs/development/python-modules/sasmodels/default.nix
@@ -1,10 +1,11 @@
 {lib, fetchgit, buildPythonPackage, pytest, numpy, scipy, matplotlib, docutils}:
 
 buildPythonPackage rec {
-  name = "sasmodels-${version}";
+  pname = "sasmodels";
   version = "0.96";
 
-  propagatedBuildInputs = [docutils matplotlib numpy pytest scipy];
+  buildInputs = [pytest];
+  propagatedBuildInputs = [docutils matplotlib numpy scipy];
 
   preCheck = ''export HOME=$(mktemp -d)'';