Commit 38f63762 authored by Fabian Affolter's avatar Fabian Affolter
Browse files

python310Packages.quantities: add changelog to meta

parent 46d790b4
Loading
Loading
Loading
Loading
+5 −2
Original line number Diff line number Diff line
@@ -11,7 +11,7 @@ buildPythonPackage rec {

  src = fetchPypi {
    inherit pname version;
    sha256 = "sha256-7+r//AwDZPiRqTJyOc0SSWvMtVzQN6bRv0TecG9yKHc=";
    hash = "sha256-7+r//AwDZPiRqTJyOc0SSWvMtVzQN6bRv0TecG9yKHc=";
  };

  propagatedBuildInputs = [
@@ -27,11 +27,14 @@ buildPythonPackage rec {
    "test_mul"
  ];

  pythonImportsCheck = [ "quantities" ];
  pythonImportsCheck = [
    "quantities"
  ];

  meta = with lib; {
    description = "Quantities is designed to handle arithmetic and conversions of physical quantities";
    homepage = "https://python-quantities.readthedocs.io/";
    changelog = "https://github.com/python-quantities/python-quantities/blob/v${version}/CHANGES.txt";
    license = licenses.bsd2;
    maintainers = with maintainers; [ ];
  };