]> git.scottworley.com Git - nix-currently-building/blob - default.nix
Release 1.0.1
[nix-currently-building] / default.nix
1 { pkgs ? import <nixpkgs> { } }:
2 pkgs.python3Packages.callPackage ({ lib, buildPythonPackage, }:
3 buildPythonPackage rec {
4 pname = "nix-currently-building";
5 version = "1.0.1";
6 src = lib.cleanSource ./.;
7 }) { }