nixpkgs/pkgs/development/python-modules/bumps/default.nix
R. RyanTM 30bb550fc2 python37Packages.bumps: 0.7.11 -> 0.7.12
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.7-bumps/versions
2019-09-28 02:42:56 -07:00

25 lines
622 B
Nix

{ stdenv, buildPythonPackage, fetchPypi, six}:
buildPythonPackage rec {
pname = "bumps";
version = "0.7.12";
propagatedBuildInputs = [six];
# Bumps does not provide its own tests.py, so the test
# always fails
doCheck = false;
src = fetchPypi {
inherit pname version;
sha256 = "0a8m56bwyi0gdrf3kgkdw3cajyxlr40qrj1xlh5yn4qqjbz7ym02";
};
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;
};
}