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

python3Packages.usort: 1.1.0 -> 1.1.1 (#478663)

parents cd5635cf 2853f384
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -15,16 +15,16 @@
  volatile,
}:

buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
  pname = "usort";
  version = "1.1.0";
  version = "1.1.1";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "facebook";
    repo = "usort";
    tag = "v${version}";
    hash = "sha256-QnhpnuEt6j/QPmX29A0523QDh4o2QfaCoDI0YJpTc8Y=";
    tag = "v${finalAttrs.version}";
    hash = "sha256-sSc6TpsErz+93+dlKk+RZnyZFAp7qjpNYMVCEW9lXds=";
  };

  build-system = [
@@ -52,9 +52,9 @@ buildPythonPackage rec {
  meta = {
    description = "Safe, minimal import sorting for Python projects";
    homepage = "https://github.com/facebook/usort";
    changelog = "https://github.com/facebook/usort/blob/${src.tag}/CHANGELOG.md";
    changelog = "https://github.com/facebook/usort/blob/${finalAttrs.src.tag}/CHANGELOG.md";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ fab ];
    mainProgram = "usort";
  };
}
})