mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-16 18:37:04 +03:00
pythonPackage.bumps: init at 0.7.6
This package is required by SasView, which will be added in a later commit.
This commit is contained in:
parent
db2e6b6e9a
commit
242e37800b
25
pkgs/development/python-modules/bumps/default.nix
Normal file
25
pkgs/development/python-modules/bumps/default.nix
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
{ stdenv, buildPythonPackage, fetchPypi, six}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
name = "${pname}-${version}";
|
||||||
|
pname = "bumps";
|
||||||
|
version = "0.7.6";
|
||||||
|
|
||||||
|
propagatedBuildInputs = [six];
|
||||||
|
|
||||||
|
# Bumps does not provide its own tests.py, so the test
|
||||||
|
# always fails
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "1ahzw8ls9wsz2ks668s15zskyykib52fhi07mg50hp7lw9avqb5k";
|
||||||
|
};
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = http://www.reflectometry.org/danse/software.html;
|
||||||
|
description = "Data fitting with bayesian uncertainty analysis";
|
||||||
|
maintainers = with maintainers; [ rprospero ];
|
||||||
|
license = licenses.publicDomain;
|
||||||
|
};
|
||||||
|
}
|
@ -1321,6 +1321,8 @@ in {
|
|||||||
enablePython = true;
|
enablePython = true;
|
||||||
});
|
});
|
||||||
|
|
||||||
|
bumps = callPackage ../development/python-modules/bumps {};
|
||||||
|
|
||||||
buttersink = buildPythonPackage rec {
|
buttersink = buildPythonPackage rec {
|
||||||
name = "buttersink-0.6.8";
|
name = "buttersink-0.6.8";
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user