1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-23 14:11:36 +00:00

Merge pull request #40215 from timbertson/nix-pin

nix-pin: 0.3.0 -> 0.3.1
This commit is contained in:
xeji 2018-05-09 13:31:48 +02:00 committed by GitHub
commit ab9fa89add
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,15 +1,15 @@
{ lib, pkgs, stdenv, fetchFromGitHub, mypy, python3, nix, git, makeWrapper }:
let self = stdenv.mkDerivation rec {
name = "nix-pin-${version}";
version = "0.3.0";
version = "0.3.1";
src = fetchFromGitHub {
owner = "timbertson";
repo = "nix-pin";
rev = "version-0.3.0";
sha256 = "1kq50v8m8y1wji63b7y3wh6nv3ahvdxvvbsb07day2zzf5ysy8kj";
rev = "version-0.3.1";
sha256 = "1sldbrz33wz30d3vv3d2clyqyd6x1y6h6xjz1xv55fa97ig1h481";
};
buildInputs = [ python3 mypy makeWrapper ];
buildPhase = ''
checkPhase = ''
mypy bin/*
'';
installPhase = ''