Unverified Commit ea9c023b authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python3Packages.asdf-standard: 1.2.0 -> 1.3.0 (#416845)

parents 2f0c3918 70c470b0
Loading
Loading
Loading
Loading
+5 −10
Original line number Diff line number Diff line
@@ -2,27 +2,21 @@
  lib,
  buildPythonPackage,
  fetchPypi,
  importlib-resources,
  pythonOlder,
  setuptools-scm,
}:

buildPythonPackage rec {
  pname = "asdf-standard";
  version = "1.2.0";
  format = "pyproject";

  disabled = pythonOlder "3.7";
  version = "1.3.0";
  pyproject = true;

  src = fetchPypi {
    pname = "asdf_standard";
    inherit version;
    hash = "sha256-5wmRL68L4vWEOiOvJzHm927WwnmynfWYnhUgmS+jxc8=";
    hash = "sha256-WViWHzmd6tIACnhyTaN/Wu6wSZp4C72a5Pw+y+Pq7WQ=";
  };

  nativeBuildInputs = [ setuptools-scm ];

  propagatedBuildInputs = lib.optionals (pythonOlder "3.9") [ importlib-resources ];
  build-system = [ setuptools-scm ];

  # Circular dependency on asdf
  doCheck = false;
@@ -32,6 +26,7 @@ buildPythonPackage rec {
  meta = with lib; {
    description = "Standards document describing ASDF";
    homepage = "https://github.com/asdf-format/asdf-standard";
    changelog = "https://github.com/asdf-format/asdf-standard/releases/tag/${version}";
    license = licenses.bsd3;
    maintainers = with maintainers; [ fab ];
  };