Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 766fb6a51393
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: cefafeefbb7f
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Jan 22, 2021

  1. python37Packages.fuse: 1.0.0 -> 1.0.1

    r-ryantm authored and Jonathan Ringer committed Jan 22, 2021
    Copy the full SHA
    1bafaad View commit details
  2. pythonPackages.fuse: add pythonImportsCheck

    dotlambda authored and Jonathan Ringer committed Jan 22, 2021
    Copy the full SHA
    cefafee View commit details
Showing with 5 additions and 3 deletions.
  1. +5 −3 pkgs/development/python-modules/fuse-python/default.nix
8 changes: 5 additions & 3 deletions pkgs/development/python-modules/fuse-python/default.nix
Original file line number Diff line number Diff line change
@@ -2,19 +2,21 @@

buildPythonPackage rec {
pname = "fuse-python";
version = "1.0.0";
version = "1.0.1";

src = fetchPypi {
inherit pname version;
sha256 = "cbaa21c8f0a440302d1ba9fd57a80cf9ff227e5a3820708a8ba8450db883cc05";
sha256 = "da42d4f596a2e91602bcdf46cc51747df31c074a3ceb78bccc253c483a8a75fb";
};

buildInputs = [ fuse ];
nativeBuildInputs = [ pkg-config ];

# no tests in the Pypi archive
# no tests implemented
doCheck = false;

pythonImportsCheck = [ "fuse" ];

meta = with lib; {
description = "Python bindings for FUSE";
homepage = "https://github.com/libfuse/python-fuse";